Is C# becoming harder to read? [closed]

Posted by Avi on Programmers See other posts from Programmers or by Avi
Published on 2012-06-04T12:49:13Z Indexed on 2012/06/04 16:54 UTC
Read the original article Hit count: 131

Filed under:
|

As C# has progressed, many language features have been added. It has come to the point where it's becoming unreadable for me.

As an example, consider the following code snip from Caliburn.Micro code here:

            container = CompositionHost.Initialize(
                   new AggregateCatalog(
                      AssemblySource.Instance.
                             Select(x => new AssemblyCatalog(x))
                               .OfType<ComposablePartCatalog>()
                )
            );

Now, this is just a small example.

I have a number of questions:

  • Is this a common or known problem?
  • Is the C# community finding the same?
  • Is this an issue with the language, or is it the style used by the developer?

Are there any simple solutions to better understand others code and avoid writing code in this way?

© Programmers or respective owner

Related posts about c#

Related posts about readability